control-C - définition. Qu'est-ce que control-C
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est control-C - définition

COMPUTER COMMAND
Control C; Cntl C; Cntl-C; Ctrl-C; Ctrl+c; Control-c; ^C; Ctrl-c; Ctrl+C; Ctl-c

control-C         
<character> (Or ETX, End of Text) The ASCII character with code 3. Control-C is the interrupt character used on many {operating systems}, including Unix and MS-DOS to abort a running program. Among BSD Unix hackers, the canonical humorous response to "Give me a break!" is "Control C". [Jargon File] (1995-03-16)
Control-C         
Control+C is a common computer command. It is generated by pressing the key while holding down the key on most computer keyboards.
C process control         
GROUP OF FUNCTIONS (ABORT, EXIT, _EXIT, ATEXIT, QUICK_EXIT, AT_QUICK_EXIT, GETENV, SYSTEM) IN THE HEADER STDLIB.H OF THE C STANDARD LIBRARY IMPLEMENTING BASIC PROCESS CONTROL OPERATIONS
Cstdlib; System (C standard library); System (C Standard Library); Atexit; Getenv; C program control operations; System (C); Abort (C)
C process control refers to a group of functions in the standard library of the C programming language implementing basic process control operations. The process control operations include actions such as termination of the program with various levels of cleanup, running an external command interpreter or accessing the list of the environment operations.

Wikipédia

Control-C

Control-C is a common computer command. It is generated by pressing the C key while holding down the Ctrl key on most computer keyboards.

In graphical user interface environments that use the control key to control the active program, control+C is often used to copy highlighted text to the clipboard.

In many command-line interface environments, control+C is used to abort the current task and regain user control. It is a special sequence that causes the operating system to send a signal to the active program. Usually the signal causes it to end, but the program may "catch" it and do something else, typically returning control to the user.